home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / wildcat / cm50b15.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1996-07-01  |  1KB  |  46 lines

  1. @echo off
  2. Rem  This batch file will create the necessary subdirectories in the
  3. Rem  new Charge Master home directory and unzip the appropriate archives
  4. Rem  into them. It then deletes the archives. PKUNZIP MUST BE IN YOUR PATH!
  5. cls
  6. echo       ╓──┐ ╥  ┬ ╓──┐ ╥──┐ ╓──┐ ╥──┐   ╓─╥─┐ ╓──┐  ╓─┐ ╓─╥─┐ ╥──┐ ╥──┐
  7. echo       ║    ╟──┤ ╟──┤ ╟─┬┘ ║ ─┐ ╟─     ║ ║ │ ╟──┤  ╙─┐   ║   ╟─   ╟─┬┘
  8. echo       ╙──┘ ╨  ┴ ╨  ┴ ╨ ┴  ╙──┘ ╨──┘   ╨ ╨ ┴ ╨  ┴ ╙──┘   ╨   ╨──┘ ╨ ┴ 
  9. echo                               Version 5.0ß
  10. echo.
  11. echo                         ****  INSTALLATION  ****
  12. echo.
  13. echo  This batch file will create the necessary subdirectories in the current
  14. echo  directory and unzip the appropriate archives  in them.  After which  it
  15. echo  will delete those archives (HELP.ZIP, DOCS.ZIP, etc).  
  16. echo.
  17. echo.
  18. echo.
  19. echo  Press Control C to abort this process or ENTER to continue
  20. Pause
  21.  
  22. :CreateDir
  23. md ACCT
  24. md ATTACH
  25. md DATA
  26. md DISP
  27. md DOCS
  28. md HELP
  29. md CHARGES
  30. md RECEIPTS
  31.  
  32. :UnzipArchives
  33. pkunzip HELP.ZIP .\HELP
  34. pkunzip DOCS.ZIP .\DOCS
  35. pkunzip -n DISP.ZIP .\DISP
  36. pkunzip -n DATA.ZIP .\DATA
  37.  
  38. :delarchives
  39. IF EXIST  HELP.ZIP  del HELP.ZIP
  40. IF EXIST  DISP.ZIP  del DISP.ZIP
  41. IF EXIST  DOCS.ZIP  del DOCS.ZIP
  42. IF EXIST  DATA.ZIP  del DATA.ZIP
  43. IF EXIST  PKUNZIP.EXE  del PKUNZIP.EXE
  44.  
  45. echo DONE!
  46.